home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.dom;
-
- import org.w3c.dom.DOMException;
- import org.w3c.dom.DocumentFragment;
-
- public class DocumentFragmentImpl extends NodeImpl implements DocumentFragment {
- static final long serialVersionUID = -7596449967279236746L;
-
- public DocumentFragmentImpl(DocumentImpl var1) {
- super(var1, (String)null, (String)null);
- }
-
- public DocumentFragmentImpl() {
- }
-
- public short getNodeType() {
- return 11;
- }
-
- public String getNodeName() {
- return "#document-fragment";
- }
-
- public void setNodeValue(String var1) throws DOMException {
- throw new DOMExceptionImpl((short)7, (String)null);
- }
- }
-